home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / dl_exsrc.zoo / regerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-05  |  232 b   |  17 lines

  1. /* From Henry Spencer's regexp(3) library */
  2.  
  3. #include <stdio.h>
  4.  
  5. void
  6. regerror(s)
  7. char *s;
  8. {
  9. #ifdef ERRAVAIL
  10.     error("regexp: %s", s);
  11. #else
  12.     fprintf(stderr, "regexp(3): %s", s);
  13.     exit(1);
  14. #endif
  15.     /* NOTREACHED */
  16. }
  17.